Welcome![Sign In][Sign Up]
Location:
Search - load matlab

Search list

[Compress-Decompress algrithmsSPIHT(Matlab).zip

Description:

% Matlab implementation of SPIHT (without Arithmatic coding stage)
%
% By Jing Tian, scuteejtian@hotmail.com

fprintf('-----------   Welcome to SPIHT Matlab Demo!   ----------------\n');

fprintf('-----------   Load Image   ----------------\n');
infilename = 'lena512.bmp';
outfilename = 'lena512_reconstruct.bmp';

Orig_I = double(imread(infilename));

rate = 1;

OrigSize = size(Orig_I, 1);
max_bits = floor(rate * OrigSize^2);
OutSize = OrigSize;
image_spiht = zeros(size(Orig_I));
[nRow, nColumn] = size(Orig_I);

fprintf('done!\n');
fprintf('-----------   Wavelet Decomposition   ----------------\n');
n = size(Orig_I,1);
n_log = log2(n);
level = n_log;
% wavelet decomposition level can be defined by users manually.
type = 'bior4.4';
[Lo_D,Hi_D,Lo_R,Hi_R] = wfilters(type);

[I_W, S] = func_DWT(Orig_I, level, Lo_D, Hi_D);

fprintf('done!\n');

fprintf('-----------   Encoding   ----------------\n');
img_enc = func_SPIHT_Enc(I_W, max_bits, nRow*nColumn, level);  

fprintf('done!\n');
fprintf('-----------   Decoding   ----------------\n');
img_dec = func_SPIHT_Dec(img_enc);

fprintf('done!\n');
fprintf('-----------   Wavelet Reconstruction   ----------------\n');
img_spiht = func_InvDWT(img_dec, S, Lo_R, Hi_R, level);

fprintf('done!\n');
fprintf('-----------   PSNR analysis   ----------------\n');

imwrite(img_spiht, gray(256), outfilename, 'bmp');

Q = 255;
MSE = sum(sum((img_spiht-Orig_I).^2))/nRow / nColumn;
fprintf('The psnr performance is %.2f dB\n', 10*log10(Q*Q/MSE));


Platform: | Size: 232873 | Author: jasonchang | Hits:

[Windows Develop(用)VC调用matlab engine示例

Description: 这是教你如何在VC里调用matlab的文档和源程序-The document and source code to tell you how to load matlab engine using VC.
Platform: | Size: 2023707 | Author: 安秋 | Hits:

[Windows Develop(用)VC调用matlab engine示例

Description: 这是教你如何在VC里调用matlab的文档和源程序-The document and source code to tell you how to load matlab engine using VC.
Platform: | Size: 2023424 | Author: 安秋 | Hits:

[OtherMATLAB

Description: 把训练数据拷入,load的*.m文件中, 文件中部load的*.m为测试数据 save 存盘的文件为测试数据的bp预测值, 该程序可以扩充n个输入,n个输出,很容易-it is copyed into the training data, load the document*. m, Central to the paper load*. m to save Inventory test data for the paper test data bp predictive value, The procedure can be expanded to import n, n output, it is easy
Platform: | Size: 1024 | Author: LULU | Hits:

[Software Engineeringlys10.m

Description: 基于回归法进行负荷预测的MATLAB程序,用与峰峰值负荷预测-based on regression forecast load MATLAB program, and the peak load forecast
Platform: | Size: 1024 | Author: 123 | Hits:

[matlabGARCH-Matlab

Description: 2.多元GARCH模型预测的Matlab程序-2. Multi-GARCH model prediction of Matlab procedures
Platform: | Size: 5120 | Author: blue8202 | Hits:

[AlgorithmRaoBlackwellisedParticleFilteringforDynamicBayesia

Description: The software implements particle filtering and Rao Blackwellised particle filtering for conditionally Gaussian Models. The RB algorithm can be interpreted as an efficient stochastic mixture of Kalman filters. The software also includes efficient state-of-the-art resampling routines. These are generic and suitable for any application. For details, please refer to Rao-Blackwellised Particle Filtering for Fault Diagnosis and On Sequential Simulation-Based Methods for Bayesian Filtering After downloading the file, type "tar -xf demo_rbpf_gauss.tar" to uncompress it. This creates the directory webalgorithm containing the required m files. Go to this directory, load matlab and run the demo. -The software implements particle filtering and Rao Blackwellised particle filtering for conditionally Gaussian Models. The RB algorithm can be interpreted as an efficient stochastic mixture of Kalman filters. The software also includes efficient state-of-the-art resampling routines. These are generic and suitable for any application. For details, please refer to Rao-Blackwellised Particle Filtering for Fault Diagnosis and On Sequential Simulation-Based Methods for Bayesian Filtering After downloading the file, type "tar-xf demo_rbpf_gauss.tar" to uncompress it. This creates the directory webalgorithm containing the required m files. Go to this directory, load matlab and run the demo.
Platform: | Size: 202752 | Author: 晨间 | Hits:

[matlabMAT

Description: 详细介绍了在MATLAB环境中,MAT文件的编辑与读写,通常使用load和save两个命令进行 MAT 文件的读和写-Described in detail in the MATLAB environment, MAT files editing and read and write, load and save commonly used two commands to read and write MAT files
Platform: | Size: 6144 | Author: yang | Hits:

[ELanguageeldtest

Description: matlab program for economic load dispatch
Platform: | Size: 2048 | Author: deva | Hits:

[matlabSVM_Short-term-Load-Forecasting

Description: 优秀论文及配套源码。首先阐述了负荷预测的应用研究现状,概括了负荷预测的特点及其影响因素,归纳了短期负荷预测的常用方法,并分析了各种方法的优劣;接着介绍了作为支持向量机(SVM)理论基础的统计学习理论和SVM的原理,推导了SVM回归模型;本文采用最小二乘支持向量机(LSSVM)模型,根据浙江台州某地区的历史负荷数据和气象数据,分析影响预测的各种因素,总结了负荷变化的规律性,对历史负荷数据中的“异常数据”进行修正,对负荷预测中要考虑的相关因素进行了归一化处理。LSSVM中的两个参数对模型有很大影响,而目前依然是基于经验的办法解决。对此,本文采用粒子群优化算法对模型参数进行寻优,以测试集误差作为判决依据,实现模型参数的优化选择,使得预测精度有所提高。实际算例表明,本文的预测方法收敛性好、有较高的预测精度和较快的训练速度。-first expounds the recent application research of load forecasting, summarized the characteristics of load forecasting and influencing factors, summed up common methods of short-term load forecasting, and analyzed the advantages and disadvantages of each method then introduced statistical learning theory and the principle of SVM as the basis of support vector machine (SVM ) theory, SVM regression model is derived this paper adopted least squares support vector machine (LSSVM) model, according to the historical load data and meteorological data of a certain area of Zhejiang Taizhou, Analysised the various factors affecting the forecast, summed up the regularity of load change , amended "outliers" in the historical load data,the load forecasting factors to be considered were normalized. The two parameters of LSSVM have a significant impact on the model, but it is still soluted based on the experience currently. So, this paper adopted particle swarm optimization algorithm to optimized
Platform: | Size: 334848 | Author: NBB | Hits:

[matlabLoad-frequency-dynamics

Description: Matlab m file for load frequency analysis
Platform: | Size: 14336 | Author: sathishkumar | Hits:

[matlabNewmark-in-Matlab

Description: 以Newmark法求解受移动载荷作用的梁振动问题-Moving load problem using Newmark in Matlab
Platform: | Size: 1024 | Author: liulei | Hits:

[AI-NN-PRLoad-a-sequence-of-images-into-matlab

Description: to load a bunch of images into matlab.
Platform: | Size: 1024 | Author: freyssineta | Hits:

[matlabLoad-flow-newton-raphson

Description: Load flow with newton rphson algorithm m file matlab code
Platform: | Size: 1024 | Author: zaqwaz | Hits:

[matlabLoad-frequency-control

Description: Load frequency control
Platform: | Size: 7168 | Author: ali | Hits:

[matlabpower_acdrive

Description: The induction motor is fed by a current-controlled PWM inverter which is built using a Universal Bridge block. The motor drives a mechanical load characterized by inertia J, friction coeficient B, and load torque TL . The speed control loop uses a proportional-integral controller to produce the quadrature-axis current reference iq* which controls the motor torque. The motor flux is controlled by the direct-axis current reference id*. Block DQ-ABC is used to convert id* and iq* into current references ia*, ib*, and ic* for the current regulator. Current and Voltage Measurement blocks provide signals for visualization purpose. Motor current, speed, and torque signals are available at the output of the Asynchronous Machine block.-The induction motor is fed by a current-controlled PWM inverter which is built using a Universal Bridge block. The motor drives a mechanical load characterized by inertia J, friction coeficient B, and load torque TL . The speed control loop uses a proportional-integral controller to produce the quadrature-axis current reference iq* which controls the motor torque. The motor flux is controlled by the direct-axis current reference id*. Block DQ-ABC is used to convert id* and iq* into current references ia*, ib*, and ic* for the current regulator. Current and Voltage Measurement blocks provide signals for visualization purpose. Motor current, speed, and torque signals are available at the output of the Asynchronous Machine block.
Platform: | Size: 15360 | Author: jurifa | Hits:

[matlabMATLAB-LoadFlow

Description: 用于计算机计算潮流的仿真运行程序,基于matlab程序编程的程序.-LOAD FLOW
Platform: | Size: 2048 | Author: youtaojiang | Hits:

[matlabGRID-CONNECTED-3PHASE-LOAD-MATLAB-SIMULATION

Description: THIS SIMULATION INCLUDES GRID CONNECTED MATLAB SIMULATION.
Platform: | Size: 70656 | Author: kraj | Hits:

[matlabMATLAB-simulink

Description: 直流电机调速的MATLAB仿真(开环闭环加矫正不加矫正)simulink模型,空载以及有负载的仿真实例。MATLAB simulation of DC motor speed control (open-loop closed-loop plus correction without correction) simulink model, simulation examples, and there are loads of load.-MATLAB simulation of DC motor speed control (open-loop closed-loop plus correction without correction) simulink model, simulation examples, and there are loads of load.
Platform: | Size: 50176 | Author: | Hits:

[matlabload scheduling by genetic algorithm

Description: this research paper is based on Load scheduling in power system by genetic algorithm
Platform: | Size: 283648 | Author: anees1411 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 43 »

CodeBus www.codebus.net